/* Spinner loading screen */
#html-spinner {
  width: 80px;
  height: 80px;
  border: 1px solid #fcd779;
  border-top: 10px solid white;
  border-radius: 60%;
  animation: rotate 1.2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Rest of page style */
body {
  background: black;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: yellow;
}

#container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
}

#text-container {
  text-align: center;
}

#html-para {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#html-para1 {
  font-size: 36px;
  font-weight: bold;
}


#logo-image {   /* Logo image */
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

